home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr50 / datema.zip / CALDATA.TXT < prev    next >
Text File  |  1993-01-21  |  938b  |  45 lines

  1. //This is the Calendar Text File (CALDATA.TXT)
  2. // Note that the file can contain blank lines for clarity
  3.  
  4. //First I will set up a 5 day work week calendar called FiveDay.
  5. //Calendar names can be up to 8 characters long and MUST start
  6. //with a letter. 
  7.  
  8. //Calendar FiveDay will have rest on Saturday and
  9. //Sunday but no holidays.
  10.  
  11. //Holidays for FiveDay
  12.  
  13. //Rest for FiveDay
  14. FiveDay sat
  15. FiveDay sun
  16.  
  17.  
  18. //Next I will set up a six day calendar that rests only on Sunday
  19. //and has no holidays.
  20.  
  21. //Holidays for SixDay
  22.  
  23. //Rest for SixDay
  24. SixDay sun
  25.  
  26.  
  27. //Finally I will setup a calendar that rests on Saturday and Sunday
  28. //and has standard US Holidays for 1993.
  29.  
  30. //Holidays for HolsFive
  31. HolsFive 18-jan-93
  32. HolsFive 25-feb-93
  33. HolsFive 31-may-93
  34. HolsFive 5-jul-93
  35. HolsFive 6-sep-93
  36. HolsFive 11-nov-93
  37. HolsFive 25-nov-93
  38. HolsFive 24-dec-93
  39. HolsFive 31-dec-93
  40.  
  41. //Rest for HolsFive
  42. HolsFive sat
  43. HolsFive sun
  44.  
  45.